home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / Separator.h < prev    next >
C/C++ Source or Header  |  1992-04-27  |  396b  |  24 lines

  1. #ifndef Separator_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #pragma interface
  5. #endif
  6. #define Separator_First
  7.  
  8. #include "VObject.h"
  9.  
  10. //---- Separator ---------------------------------------------------------------
  11.  
  12. class Separator : public VObject {
  13. public:
  14.     MetaDef(Separator);
  15.     Separator();
  16.     void Enable(bool, bool);
  17.     void DrawInner(Rectangle, bool);
  18.     Metric GetMinSize();
  19. };
  20.  
  21. #endif
  22.  
  23.  
  24.